home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / TIMES.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  153b  |  12 lines

  1. #ifndef _LINUX_TIMES_H
  2. #define _LINUX_TIMES_H
  3.  
  4. struct tms {
  5.     clock_t tms_utime;
  6.     clock_t tms_stime;
  7.     clock_t tms_cutime;
  8.     clock_t tms_cstime;
  9. };
  10.  
  11. #endif
  12.